runtime.hchan.sendx (field)
13 uses
runtime (current package)
chan.go#L41: sendx uint // send index
chan.go#L229: qp := chanbuf(c, c.sendx)
chan.go#L231: racenotify(c, c.sendx, nil)
chan.go#L234: c.sendx++
chan.go#L235: if c.sendx == c.dataqsiz {
chan.go#L236: c.sendx = 0
chan.go#L319: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
chan.go#L703: c.sendx = c.recvx // c.sendx = (c.sendx+1) % c.dataqsiz
select.go#L461: racenotify(c, c.sendx, nil)
select.go#L470: typedmemmove(c.elemtype, chanbuf(c, c.sendx), cas.elem)
select.go#L471: c.sendx++
select.go#L472: if c.sendx == c.dataqsiz {
select.go#L473: c.sendx = 0
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |